public SampleDetailMoreController(ISampleDetailRepository rep, ISampleDetailApplicationService app, ILoggerFactory logger, EnviromentInfo env) { this._rep = rep; this._app = app; this._logger = logger.CreateLogger <SampleDetailMoreController>(); this._env = env; }
public SampleDetailServiceBase(ISampleDetailRepository rep, ICache cache, CurrentUser user) : base(cache) { this._rep = rep; this._user = user; }
public SampleDetailService(ISampleDetailRepository rep, ICache cache, CurrentUser user) : base(rep, cache, user) { }
public SampleDetailIsSuitableWarning(ISampleDetailRepository rep) { //base.Add(Guid.NewGuid().ToString(), new Rule<SampleDetail>(Instance of suitable warning specification,"message for user")); }
public SampleDetailIsSuitableValidation(ISampleDetailRepository rep) { //base.Add(Guid.NewGuid().ToString(), new Rule<SampleDetail>(Instance of is suitable,"message for user")); }