예제 #1
0
 public RFQMailCCController(RFQDBContext context)
 {
     _context = context;
 }
예제 #2
0
 public OrganizationController(RFQDBContext context)
 {
     _context = context;
 }
예제 #3
0
 public PurchaseRequestController(RFQDBContext context)
 {
     _context = context;
 }
예제 #4
0
 public CategoryController(RFQDBContext context)
 {
     _context = context;
 }
예제 #5
0
 public PRDetailController(RFQDBContext context)
 {
     _context = context;
 }
예제 #6
0
 public VendorController(RFQDBContext context)
 {
     _context = context;
 }
예제 #7
0
 public Repository(RFQDBContext readContext, RFQDBContext writeContext)
 {
     this.readContext  = readContext;
     this.writeContext = writeContext;
 }
예제 #8
0
 public RFQRepository(RFQDBContext readContext, RFQDBContext writeContext) : base(readContext, writeContext)
 {
 }
예제 #9
0
 public RequestForQuotationController(RFQDBContext context)
 {
     _context = context;
 }