Пример #1
0
 public ThongBaoController(
     IRoleRepository _roleServ,
     IPermissionRepository _quyenServ,
     IThongBaoRepository _ThongBaoerv)
 {
     this._roleServ      = _roleServ;
     this._permisionServ = _quyenServ;
     this._ThongBaoerv   = _ThongBaoerv;
 }
Пример #2
0
 public ChatDetailHub(IMapper mapper, IRoomRepository iRoomRepository, IMessageRepository iMessageRepository, IAccountRepository iAccountRepository, IThongBaoRepository thongBaoRepository, ICustomerRepository customerRepository)
 {
     _mapper                 = mapper;
     _iRoomRepository        = iRoomRepository;
     _iMessageRepository     = iMessageRepository;
     _iAccountRepository     = iAccountRepository;
     this.thongBaoRepository = thongBaoRepository;
     this.customerRepository = customerRepository;
 }
Пример #3
0
 public RestaurantHub(IThongBaoRepository thongBaoRepository, ICustomerRepository customerRepository)
 {
     this.thongBaoRepository = thongBaoRepository;
     this.customerRepository = customerRepository;
 }
Пример #4
0
 public ThongBaoController(IThongBaoRepository iThongBaoRepository)
 {
     _iThongBaoRepository = iThongBaoRepository;
 }
Пример #5
0
 public ThongBaoService(IThongBaoRepository thongBaoRepository, IUnitOfWork unitOfWork)
 {
     this._thongBaoRepository = thongBaoRepository;
     this._unitOfWork         = unitOfWork;
 }
Пример #6
0
 public ThongBaoViewComponent(IThongBaoRepository thongBaoRepository)
 {
     _thongBaoRepository = thongBaoRepository;
 }