public IEnumerable Get([FromServices] ZapSacDAO _zapSacDAO)
 {
     return(_zapSacDAO.ConsultaContatoZapSac());
 }
Exemple #2
0
 public SacMobileConfig Get([FromServices] ZapSacDAO _zapSacDAO, int idc)
 {
     return(_zapSacDAO.ConsultaConfigZapSac(idc));
 }
 public SacMobileContato Get([FromServices] ZapSacDAO _zapSacDAO, int id)
 {
     return(_zapSacDAO.ConsultaContatoZapSac(id));
 }
 public SacMobileTelefone Get([FromServices] ZapSacDAO _zapSacDAO, int idc)
 {
     return(_zapSacDAO.ConsultaTelefoneZapSac(idc));
 }