Example #1
0
 public ExecutorController(IUserService userService,
                           ICategoryService categoryService,
                           ISeviceService seviceService)
 {
     this.userService     = userService;
     this.categoryService = categoryService;
     this.seviceService   = seviceService;
 }
Example #2
0
 public AdminController(IAdminService adminService,
                        ISeviceService seviceService,
                        ICategoryService categoryService)
 {
     this.adminService    = adminService;
     this.seviceService   = seviceService;
     this.categoryService = categoryService;
 }
Example #3
0
 public AccountController(IUserService userService,
                          IOrderService orderService,
                          IImageService imageService,
                          ICategoryService categoryService,
                          ISeviceService serviceService)
 {
     this.userService     = userService;
     this.orderService    = orderService;
     this.imageService    = imageService;
     this.categoryService = categoryService;
     this.serviceService  = serviceService;
 }