示例#1
0
 public StatusDoUsuarioMoreController(IStatusDoUsuarioRepository rep, IStatusDoUsuarioApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <StatusDoUsuarioMoreController>();
     this._env    = env;
     this._user   = user;
 }
 public StatusDoUsuarioIsSuitableValidation(IStatusDoUsuarioRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<StatusDoUsuario>(Instance of is suitable,"message for user"));
 }
 public StatusDoUsuarioService(IStatusDoUsuarioRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
示例#4
0
 public StatusDoUsuarioServiceBase(IStatusDoUsuarioRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
 public StatusDoUsuarioIsSuitableWarning(IStatusDoUsuarioRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<StatusDoUsuario>(Instance of suitable warning specification,"message for user"));
 }