Example #1
0
 public string CadastrarParte(List <Partes> parte)
 {
     _partesServices = new PartesServices(_partesRepository);
     return(_partesServices.CadastrarPartes(parte));
 }
Example #2
0
 public DataTable RetornarParteCpf(string cpf)
 {
     _partesServices = new PartesServices(_partesRepository);
     return(_partesServices.RetornarParteCpf(cpf));
 }
Example #3
0
 public DataTable RetornarID(int limite)
 {
     _partesServices = new PartesServices(_partesRepository);
     return(_partesServices.RetornarID(limite));
 }