Пример #1
0
 public VehicleCategoryService(VehicleCategoryNameUniqueSpecification uniqueNameSpec, VehicleCategoryNotInUseSpecification notInUseSpec, IVehicleCategoryRepo repo)
 {
     this.uniqueNameSpec = uniqueNameSpec;
     this.notInUseSpec   = notInUseSpec;
     this.repo           = repo;
 }
Пример #2
0
 public VehicleCategoryNameUniqueSpecification(IVehicleCategoryRepo repo)
 {
     this.repo = repo;
 }
Пример #3
0
 public VehicleCategoryNotInUseSpecification(IVehicleCategoryRepo repo)
 {
     this.repo = repo;
 }