public UserRoleBL() { _unitOfWork = new CmsUoW(); roleService = _unitOfWork.Repository <Role>(); userService = new UserStore(_unitOfWork); employeeInofService = new EmployeeBL(_unitOfWork); }
public BaseAPCargoBL(ICmsUoW unitOfWork) { this._unitOfWork = unitOfWork; this._entityRepository = unitOfWork.Repository <TEntity>(); }
public BaseAPCargoBL() { this._unitOfWork = new CmsUoW(); this._entityRepository = _unitOfWork.Repository <TEntity>(); }