Esempio n. 1
0
 public ProductsBusiness(IUnitOfWork unitOfWork, IDepartmentsBusiness DepartmentsBusiness, IStringLocalizer <SharedResources> localizer)
 {
     UnitOfWork          = unitOfWork;
     departmentsBusiness = DepartmentsBusiness;
     Localizer           = localizer;
     Errors = new List <string>();
 }
Esempio n. 2
0
 public DepartmentsController(
     IDepartmentsBusiness departmentsBusiness)
 {
     DepartmentsBusiness = departmentsBusiness;
 }