Exemple #1
0
 public void Delete(ServicoEmpresa item)
 {
     ServicoEmpresaDAL.DeleteServicoEmpresa(item.IdServicoEmpresa);
 }
Exemple #2
0
 public void Update(ServicoEmpresa item)
 {
     ServicoEmpresaDAL.UpdateServicoEmpresa(item);
 }
Exemple #3
0
 public void Insert(ServicoEmpresa item)
 {
     ServicoEmpresaDAL.InsertServicoEmpresa(item);
 }
Exemple #4
0
 public IEnumerable <ServicoEmpresa> GetAllServ(int id)
 {
     return(ServicoEmpresaDAL.GetServicosEmpresas(id));
 }
Exemple #5
0
 public ServicoEmpresa GetById(int id)
 {
     return(ServicoEmpresaDAL.GetServicoEmpresa(id));
 }
Exemple #6
0
 public IEnumerable <ServicoEmpresa> GetAll()
 {
     return(ServicoEmpresaDAL.GetServicoEmpresas());
 }