Пример #1
0
 public List <AgricultorVO> GetLoginAgricultor()
 {
     try
     {
         return(AgricultorDAO.GetLoginAgricultor());
     }
     catch
     {
         throw;
     }
 }
Пример #2
0
 public int GetIdAgricultor(string username)
 {
     try
     {
         return(AgricultorDAO.GetIdAgricultor(username));
     }
     catch
     {
         throw;
     }
 }
Пример #3
0
 public int InsertAgricultor(AgricultorVO Agricultor)
 {
     try
     {
         return(AgricultorDAO.InsertAgricultor(Agricultor));
     }
     catch
     {
         throw;
     }
 }