Beispiel #1
0
 // create a new instance from the  injected dbcontext
 public ProductionService(yamamadbContext db)
 {
     _db = db;
 }
 public ImportInvoiceController(yamamadbContext db, I_ImportInvoce impoin, IInvoicecs invoice)
 {
     _db            = db;
     i_ImportInvoce = impoin;
     _invoice       = invoice;
 }
Beispiel #3
0
 public FactoryService(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #4
0
 public TaskService(yamamadbContext db)
 {
     _db = db;
 }
 public ProductionByTypeController(IProductionByType prod, yamamadbContext db)
 {
     _prod = prod;
     _db   = db;
 }
Beispiel #6
0
 public PhotoController(IPhoto photo, yamamadbContext db, IHostingEnvironment env)
 {
     _photo = photo;
     _db    = db;
     _env   = env;
 }
Beispiel #7
0
 public StoreService(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #8
0
 public NeedsController(INeeds needs, yamamadbContext db)
 {
     _needs = needs;
     _db    = db;
 }
 public RequestInformationController(IRequestInformation requestInfo, yamamadbContext db)
 {
     _requestInfo = requestInfo;
     _db          = db;
 }
 public IntencivesServices(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #11
0
 public RequestInformationServices(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #12
0
 public BalanceController(IBalance balance, yamamadbContext db)
 {
     _balance = balance;
     _db      = db;
 }
Beispiel #13
0
 public VisitServices(yamamadbContext db)
 {
     _db = db;
 }
 // create a new instance from the injected classes
 public ProductionController(yamamadbContext db, IProduction production)
 {
     _db         = db;
     _production = production;
 }
Beispiel #15
0
 public TargetController(ITarget target, yamamadbContext db)
 {
     _target = target;
     _db     = db;
 }
Beispiel #16
0
 public ProductController(yamamadbContext db, IProduct product)
 {
     _db      = db;
     _product = product;
 }
Beispiel #17
0
 public TargetServices(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #18
0
 public AlertController(IAlert alert, yamamadbContext db)
 {
     _alert = alert;
     _db    = db;
 }
Beispiel #19
0
 public ProjectService(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #20
0
 public IntenciveController(IIntencive intencive, yamamadbContext db)
 {
     _intencive = intencive;
     _db        = db;
 }
 public ImportInvoiceService(yamamadbContext db, ICart cart, IInvoicecs invoice)
 {
     _db      = db;
     _cart    = cart;
     _invoice = invoice;
 }
 public QuestionnaireService(yamamadbContext yamamadbContext)
 {
     _yamamadbcontext = yamamadbContext;
 }
Beispiel #23
0
 public CartService(yamamadbContext yamamadbContext)
 {
     _yamamadbContext = yamamadbContext;
 }
Beispiel #24
0
 public InvoiceService(yamamadbContext yamamadbContext, ICart cart)
 {
     _yamamadbContext = yamamadbContext;
     _cart            = cart;
 }
Beispiel #25
0
 public PhotoService(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #26
0
 public AlertServices(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #27
0
 public VisitController(IVisit visit, yamamadbContext db)
 {
     _visit = visit;
     _db    = db;
 }
Beispiel #28
0
 public NeedsServices(yamamadbContext db)
 {
     _db = db;
 }
Beispiel #29
0
 public StoreController(yamamadbContext db, IStore store)
 {
     _db    = db;
     _store = store;
 }
Beispiel #30
0
 public ImportInvoiceReportController(yamamadbContext db, I_ImportInvoce report)
 {
     _db     = db;
     _report = report;
 }