private bool Delete(CompanyType item)
 {//deletes are done indenpendently of the repository as a delete will not commit
     //dirty records it will simply just delete the record...
     _serviceAgent.DeleteFromCompanyTypeRepository(item);
     return(true);
 }