public ServicesController(CheeprToKeeprContext ctx)
 {
     _ctx = ctx;
 }
Exemple #2
0
 public ServiceCategoryController(CheeprToKeeprContext ctx)
 {
     _ctx = ctx;
 }
Exemple #3
0
 public ExpenseCategoryController(CheeprToKeeprContext ctx)
 {
     _ctx = ctx;
 }
 public VendorCategoryController(CheeprToKeeprContext ctx)
 {
     _ctx = ctx;
 }
Exemple #5
0
 public UsersController(CheeprToKeeprContext context, ICheeprToKeeprService service)
 {
     _service = service;
     _context = context;
 }
Exemple #6
0
 public ExpensesController(CheeprToKeeprContext ctx)
 {
     _ctx = ctx;
 }
Exemple #7
0
 public VehiclesController(CheeprToKeeprContext ctx, ICheeprToKeeprService service)
 {
     _service = service;
     _ctx     = ctx;
 }
Exemple #8
0
 public HomeController(CheeprToKeeprContext context) => _context = context;