Ejemplo n.º 1
0
 public DataDefineLibraryService(ILogger <DataDefineLibraryService> log, IDataDefineLibraryRepository dlr, IMapper mapper, ICategoryRepository cr)
 {
     this._log    = log;
     this._dlr    = dlr;
     this._mapper = mapper;
     this._cr     = cr;
 }
Ejemplo n.º 2
0
 public CategoryService(ILogger <CategoryService> log, IMapper map, ICategoryRepository cr, IDataDefineLibraryRepository dl, ITypeDataDefineRepository tr)
 {
     this._log = log;
     this._map = map;
     this._cr  = cr;
     this._dl  = dl;
     this._tr  = tr;
 }
Ejemplo n.º 3
0
 public TypeDataDefineService(ILogger<TypeDataDefineService> log, IMapper mapper, ITypeDataDefineRepository td, IDataDefineLibraryRepository ddl, ITypeRepository tr, ICategoryRepository cr)
 {
     this._log = log;
     this._mapper = mapper;
     this._td = td;
     this._ddl = ddl;
     this._tr = tr;
     this._cr = cr;
 }