public SampleProductMoreController(ISampleProductRepository rep, ISampleProductApplicationService app, ILoggerFactory logger, EnviromentInfo env)
 {
     this._rep    = rep;
     this._app    = app;
     this._logger = logger.CreateLogger <SampleProductMoreController>();
     this._env    = env;
 }
 public SampleProductIsSuitableWarning(ISampleProductRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<SampleProduct>(Instance of suitable warning specification,"message for user"));
 }
 public SampleProductIsSuitableValidation(ISampleProductRepository rep)
 {
     //base.Add(Guid.NewGuid().ToString(), new Rule<SampleProduct>(Instance of is suitable,"message for user"));
 }
Esempio n. 4
0
 public SampleProductService(ISampleProductRepository rep, ICache cache, CurrentUser user)
     : base(rep, cache, user)
 {
 }
Esempio n. 5
0
 public SampleProductServiceBase(ISampleProductRepository rep, ICache cache, CurrentUser user)
     : base(cache)
 {
     this._rep  = rep;
     this._user = user;
 }