public List <RegistrationStats> GetUserPerDistrict(int year)
        {
            IHomeBLL homeBll = new HomeBLL();

            return(homeBll.GetUserPerDistrict(year));
        }
        public List <RegistrationStats> GetInspectedGrowersPerMonth(int userId, int year)
        {
            IHomeBLL homeBll = new HomeBLL();

            return(homeBll.GetInspectedGrowersPerMonth(userId, year));
        }
        public List <RegistrationStats> GetUserRegistrationsPerMonth(int year)
        {
            IHomeBLL homeBll = new HomeBLL();

            return(homeBll.GetUserRegistrationsPerMonth(year));
        }
        public List <CropsRegistered> GetAreaPerCrop(int year)
        {
            IHomeBLL homeBll = new HomeBLL();

            return(homeBll.GetAreaPerCrop(year));
        }
        public List <RegistrationStats> GetRegistrationStats(int year)
        {
            IHomeBLL homeBll = new HomeBLL();

            return(homeBll.GetRegistrationStats(year));
        }
Exemplo n.º 6
0
        public void ValidarBorrarInfor()
        {
            var HomeBll = new HomeBLL();

            HomeBll.crearCubo3D(2, 3);
        }
Exemplo n.º 7
0
 public HomeController()
 {
     _get = new HomeBLL();
 }