.NET缺少的业务框架:Griffin Framework
Griffin Framework 是一个业务应用库拥有一些.NET本身缺少的功能。
Featuring
A Command/Query seperation layer wich also supports events and request/reply type of messages.
Start small with our simple setup or our Inversion Of Control setup, later scale your appliction using our networking implementation.
Allows you to build micro services easily.
// requst/reply example public class Login : Request<LoginReply> { public Login(string userName, string password) { Password = password; UserName = userName; } public string UserName { get; private set; } public string Password { get; private set; } } // the reply public class LoginReply { public bool Success { get; set; } public Account Account { get; set; } }
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!