Exemplo n.º 1
0
 public VehicleCategoryService(VehicleCategoryNameUniqueSpecification uniqueNameSpec, VehicleCategoryNotInUseSpecification notInUseSpec, IVehicleCategoryRepo repo)
 {
     this.uniqueNameSpec = uniqueNameSpec;
     this.notInUseSpec   = notInUseSpec;
     this.repo           = repo;
 }
Exemplo n.º 2
0
 public VehicleCategoryNameUniqueSpecification(IVehicleCategoryRepo repo)
 {
     this.repo = repo;
 }
Exemplo n.º 3
0
 public VehicleCategoryNotInUseSpecification(IVehicleCategoryRepo repo)
 {
     this.repo = repo;
 }