예제 #1
0
 public CarModel(AutoRentContext DB)
 {
     this.DB = DB;
 }
예제 #2
0
 public UsersLogic(AutoRentContext db) : base(db)
 {
 }
예제 #3
0
 public BranchesLogic(AutoRentContext db) : base(db)
 {
 }
예제 #4
0
 public RentsLogic(AutoRentContext db) : base(db)
 {
 }
예제 #5
0
 public CarTypesLogic(AutoRentContext db) : base(db)
 {
 }
예제 #6
0
 public HomeLogic(AutoRentContext db) : base(db)
 {
 }
예제 #7
0
 public BaseLogic(AutoRentContext db)
 {
     DB = db;
 }