public MenuGroupService( IMenuGroupRepository menuGroupRepository, IUnitOfWork unitOfWork) { this.menuGroupRepository = menuGroupRepository; this.unitOfWork = unitOfWork; }
private void ResetRepositories() { _categoryRepository = null; _menuRepository = null; _menuGroupRepository = null; _orderRepository = null; _orderDetailsRepository = null; _productRepository = null; _slidetRepository = null; _venderRepository = null; }
/// <summary> /// hàm khởi tạo class và đối tượng tham chiếu đến repository /// </summary> /// <param name="menuGroupRepository">dùng lại phương thức khởi tạo của class cha EntirySevice<T></param> public MenuGroupService(IMenuGroupRepository menuGroupRepository) : base(menuGroupRepository) { _menuGroupRepository = menuGroupRepository; }
public MenuGroupService(IMenuGroupRepository _menuRepository, IUnitOfWork _unitOfWork) { this._menuRepository = _menuRepository; this._unitOfWork = _unitOfWork; }