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