Exemplo n.º 1
0
 public List <AgricultorVO> GetLoginAgricultor()
 {
     try
     {
         return(AgricultorDAO.GetLoginAgricultor());
     }
     catch
     {
         throw;
     }
 }
Exemplo n.º 2
0
 public int GetIdAgricultor(string username)
 {
     try
     {
         return(AgricultorDAO.GetIdAgricultor(username));
     }
     catch
     {
         throw;
     }
 }
Exemplo n.º 3
0
 public int InsertAgricultor(AgricultorVO Agricultor)
 {
     try
     {
         return(AgricultorDAO.InsertAgricultor(Agricultor));
     }
     catch
     {
         throw;
     }
 }