Пример #1
0
 public StatusDaTurmaMoreController(IStatusDaTurmaRepository rep, IStatusDaTurmaApplicationService app, ILoggerFactory logger, EnviromentInfo env, CurrentUser user)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <StatusDaTurmaMoreController>();
     this._env    = env;
     this._user   = user;
 }
Пример #2
0
 public StatusDaTurmaIsSuitableWarning(IStatusDaTurmaRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<StatusDaTurma>(Instance of suitable warning specification,"message for user"));
 }
 public StatusDaTurmaServiceBase(IStatusDaTurmaRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }
Пример #4
0
 public StatusDaTurmaIsSuitableValidation(IStatusDaTurmaRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<StatusDaTurma>(Instance of is suitable,"message for user"));
 }
 public StatusDaTurmaService(IStatusDaTurmaRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }