public UserController(IUserService userService, ILoginService loginService, IThongKeService thongKeService)
 {
     _userService    = userService;
     _loginService   = loginService;
     _thongKeService = thongKeService;
 }
 public NhanKhauController(INhanKhauService nhanKhauService, IThongKeService thongKeService)
 {
     _nhanKhauService = nhanKhauService;
     _thongKeService  = thongKeService;
 }
Exemple #3
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="thongKeService"></param>
 public ThongKeController(IThongKeService thongKeService)
 {
     _thongKeService = thongKeService;
 }