コード例 #1
0
 public ToyController(IToy toy, Day14AssignmentContext _context)
 {
     context  = _context;
     this.toy = toy;
 }
コード例 #2
0
 public CustomerController(ICustomer customer, Day14AssignmentContext _context)
 {
     context       = _context;
     this.customer = customer;
 }
コード例 #3
0
 public OrderRepo(Day14AssignmentContext context) : base(context)
 {
     this.con = context;
 }
コード例 #4
0
 public OfferRepo(Day14AssignmentContext context) : base(context)
 {
 }
コード例 #5
0
 public PlantRepo(Day14AssignmentContext context) : base(context)
 {
 }
コード例 #6
0
 public OrderController(IOrder order, Day14AssignmentContext _context)
 {
     this.order = order;
     context    = _context;
 }
コード例 #7
0
 public TypeOfTypeRepo(Day14AssignmentContext context) : base(context)
 {
 }
コード例 #8
0
 public ToyRepo(Day14AssignmentContext con) : base(con)
 {
 }
コード例 #9
0
 public CustomerRepo(Day14AssignmentContext context) : base(context)
 {
 }
コード例 #10
0
 public Company(Day14AssignmentContext _context)
 {
     context = _context;
 }