コード例 #1
0
ファイル: ProductsBusiness.cs プロジェクト: mostavaa/myApp
 public ProductsBusiness(IUnitOfWork unitOfWork, IDepartmentsBusiness DepartmentsBusiness, IStringLocalizer <SharedResources> localizer)
 {
     UnitOfWork          = unitOfWork;
     departmentsBusiness = DepartmentsBusiness;
     Localizer           = localizer;
     Errors = new List <string>();
 }
コード例 #2
0
 public DepartmentsController(
     IDepartmentsBusiness departmentsBusiness)
 {
     DepartmentsBusiness = departmentsBusiness;
 }