Пример #1
0
 public SampleStandartMoreController(ISampleStandartRepository rep, ISampleStandartApplicationService app, ILoggerFactory logger, EnviromentInfo env)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <SampleStandartMoreController>();
     this._env    = env;
 }
Пример #2
0
 public SampleStandartIsSuitableWarning(ISampleStandartRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<SampleStandart>(Instance of suitable warning specification,"message for user"));
 }
 public SampleStandartIsSuitableValidation(ISampleStandartRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<SampleStandart>(Instance of is suitable,"message for user"));
 }
Пример #4
0
 public SampleStandartService(ISampleStandartRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
Пример #5
0
 public SampleStandartServiceBase(ISampleStandartRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }