public List <ServiceRecordType> GetRecordByVehicle(int vehicleID)
 {
     return(ServiceRecordTypeDAL.GetListServicesPerformedByVehicle(vehicleID));
 }
 public int AddServiceRecordType(ServiceRecordType newServiceRecordType)
 {
     return(ServiceRecordTypeDAL.CreateServiceRecordType(newServiceRecordType));
 }
 public int RemoveServiceRecordType(ServiceRecordType oldServiceRecordType)
 {
     return(ServiceRecordTypeDAL.RemoveServiceRecordType(oldServiceRecordType));
 }