public UsersController() { this.UserService = new UserService(); validator = new ValidateRoles(); }
public BillsController() { this.billService = new BillService(); validator = new ValidateRoles(); }
public UsersController(IUserService UserService) { this.UserService = UserService; validator = new ValidateRoles(); }
public SuppliersController() { this.supplierService = new SupplierService(); validator = new ValidateRoles(); }
public BillsController(IBillService billService) { this.billService = billService; validator = new ValidateRoles(); }
public SuppliersController(ISupplierService supplierService) { this.supplierService = supplierService; validator = new ValidateRoles(); }
public ProfitsController() { this.profitService = new ProfitService(); validator = new ValidateRoles(); }
public ProfitsController(IProfitService profitService) { this.profitService = profitService; validator = new ValidateRoles(); }
public TransactionsController() { this.transactionService = new TransactionService(); validator = new ValidateRoles(); }
public TransactionsController(ITransactionService transactionService) { this.transactionService = transactionService; validator = new ValidateRoles(); }