Beispiel #1
0
 public AppService(AppDbContext db) : base(db)
 {
     User                   = new UserService(db);
     Customer               = new CustomerService(db);
     CustomerUser           = new CustomerUserService(db);
     WorkTask               = new WorkTaskService(db);
     Note                   = new NoteService(db);
     Document               = new DocumentService(db);
     Invoice                = new InvoiceService(db);
     InvoiceElementCategory = new InvoiceElementCategoryService(db);
     CommonInvoiceElement   = new CommonInvoiceElementService(db);
     InvoicePayment         = new InvoicePaymentService(db);
     InvoiceElement         = new InvoiceElementService(db);
 }
 public CustomerUserController()
 {
     customerUserService = new CustomerUserService();
 }