CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
AsynchronousBusinessRuleInheritingFromBusinessRuleAnalyzerConstants.cs
Go to the documentation of this file.
1namespace Csla.Analyzers
2{
3 public static class AsynchronousBusinessRuleInheritingFromBusinessRuleAnalyzerConstants
4 {
5 public const string Title = "Find Asynchronous Business Rules That Do Not Derive From BusinessRuleAsync";
6 public const string Message = "Asynchronous business rules should derive from BusinessRuleAsync";
7 }
8
9 public static class AsynchronousBusinessRuleInheritingFromBusinessRuleChangeToBusinessRuleAsyncCodeFixConstants
10 {
11 public const string UpdateToAsyncEquivalentsDescription = "Update base type to asynchronous equivalents";
12 }
13}