public UserController(IUserService userService, IRoleService roleService, IPanduanService panduanService, IBahanService bahanService)
 {
     this.userService    = userService;
     this.roleService    = roleService;
     this.panduanService = panduanService;
     this.bahanService   = bahanService;
 }
 public DetailPanduanController(IPanduanService panduanService, IBahanService bahanService, IUserService userService, IDetailPanduanService detailPanduanService)
 {
     this.panduanService       = panduanService;
     this.bahanService         = bahanService;
     this.userService          = userService;
     this.detailPanduanService = detailPanduanService;
 }
Exemple #3
0
 public BahanController(IBahanService bahanService, IKategoriBahanService kategoriBahanService)
 {
     this.bahanService         = bahanService;
     this.kategoriBahanService = kategoriBahanService;
 }
 public HomeController(IPanduanService panduanService, IUserService userService, IBahanService bahanService)
 {
     this.panduanService = panduanService;
     this.userService    = userService;
     this.bahanService   = bahanService;
 }