Exemplo n.º 1
0
        public static watershed_crop GetCrop(BOM.watershed_crop crop)
        {
            watershedEntities db = new watershedEntities();
            var st = (from u in db.watershed_crop where (u.cname == crop.cname && u.type == crop.type) select u).SingleOrDefault();

            return(st);
        }
Exemplo n.º 2
0
        public static User checkEmail(User user)
        {
            watershedEntities db = new watershedEntities();
            var st = (from u in db.Users1 where u.email == user.email select u).SingleOrDefault();

            return(st);
        }
Exemplo n.º 3
0
        public static List <watershed_crop> GetListCrop()
        {
            watershedEntities db = new watershedEntities();
            var list             = db.watershed_crop.ToList();

            return(list);
        }
Exemplo n.º 4
0
        public ActionResult ViewDetail()
        {
            int tal = 0;
            watershedEntities db = new watershedEntities();
            if (null != this.TempData["tal"])
            {
                tal = (int)this.TempData["tal"];
            }
            List<watershed_village_data> list = db.watershed_village_data.ToList();
            List<watershed_village_data> list1 = new List<watershed_village_data>();
            if (tal != 0)
            {
                foreach (watershed_village_data wt in list)
                {
                    if (null != wt.watershed_village)
                    {
                        if (wt.watershed_village.tid == tal)
                        {
                            list1.Add(wt);
                        }
                    }
                }
            }
            if (list1.Count > 0)
                list = list1;

            return View(list);
        }
Exemplo n.º 5
0
        public static User LoginDal(User user)
        {
            watershedEntities db = new watershedEntities();

            var st = (from u in db.Users1 where (u.email == user.email && u.password == user.password) select u).SingleOrDefault();

            return(st);
        }
Exemplo n.º 6
0
        public static bool AddPolicy(watershed_policy policy)
        {
            watershedEntities db = new watershedEntities();
            watershed_policy  p  = db.watershed_policy.Add(policy);

            db.SaveChanges();
            if (null != p)
            {
                return(true);
            }
            return(false);
        }
Exemplo n.º 7
0
        public static List <BOM.watershed_village_data> getVillageData(int vid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_village_data where u.village_id == vid select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 8
0
        public static watershed_taluka getTaluka(watershed_taluka tal)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_taluka where u.Name == tal.Name && u.cid == tal.cid select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 9
0
        public static watershed_city getCity(watershed_city city)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_city where u.cname == city.cname && u.sid == city.sid select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 10
0
        public static watershed_taluka getTalukaById(int tid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_taluka where u.tid == tid select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 11
0
        public static BOM.watershed_village_data getVillageDataById(int?vid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_village_data where u.vd_id == vid select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 12
0
        public static BOM.watershed_village_data getVillageData(int vid, DateTime cycle)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_village_data where u.village_id == vid && u.cycle_year.Year == cycle.Year select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 13
0
        public static watershed_village getVillageById(int vil)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_village where u.vid == vil select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 14
0
        public static List <BOM.watershed_city> getAllCitites(int sid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_city where u.sid == sid select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 15
0
        public static BOM.watershed_state getStatesByName(String name)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_state where u.sname.Equals(name) select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 16
0
        public static List <watershed_policy> GetPolicyListByUid(int uid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_policy where u.uid == uid select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 17
0
        public static watershed_taluka_data GetTalukaData(watershed_taluka_data city)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_taluka_data where u.tal_id == city.tal_id && u.cycle_year.Equals(city.cycle_year) select u).SingleOrDefault());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 18
0
        public static List <watershed_policy> GetPolicyList(watershed_village_data city)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_policy where u.vd_id == city.vd_id select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 19
0
        public static List <BOM.watershed_village> getAllVillages(int tid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_village where u.tid == tid select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 20
0
        public static List <BOM.watershed_taluka> getAllTalukas(int cid)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                return((from u in db.watershed_taluka where u.cid == cid select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 21
0
        public static List <watershed_policy> GetPolicyYear(watershed_village_data city)
        {
            watershedEntities db   = new watershedEntities();
            String            year = Convert.ToString(city.cycle_year.Year);

            try
            {
                return((from u in db.watershed_policy where u.vd_id == city.vd_id && u.year.Equals(year) select u).ToList());
            }
            catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 22
0
        public static bool UpdatePassword(BOM.User user, String newpass)
        {
            watershedEntities db = new watershedEntities();

            try
            {
                User us = (from u in db.Users1 where u.email == user.email select u).SingleOrDefault();
                us.password        = newpass;
                us.ConfirmPassword = newpass;
                db.SaveChanges();
                return(true);
            }catch (DbEntityValidationException ex)
            {
                return(false);
            }
        }
Exemplo n.º 23
0
        public static List <BOM.watershed_state> getAllStates()
        {
            watershedEntities      db   = new watershedEntities();
            List <watershed_state> list = new List <watershed_state>();

            try
            {
                foreach (watershed_state st in db.watershed_state)
                {
                    list.Add(st);
                }
                return(list);
            }catch (DbEntityValidationException ex)
            {
                return(null);
            }
        }
Exemplo n.º 24
0
        public static bool AddVillageData(watershed_village_data city)
        {
            int               i   = 0;
            MySqlConnection   con = null;
            MySqlCommand      cmd = null;
            watershedEntities db  = new watershedEntities();

            if (null == getVillageData(city.village_id, city.cycle_year))
            {
                try
                {
                    con = GetMySqlCon();
                    cmd = GetMySqlCommand(con);
                    con.Open();
                    cmd.CommandText = "insert into watershed_village_data (village_id,population,waterreq,rainfall,wateravail,water_sarcacity,cycle_year,livestock,num_families) values(?village_id,?population,?waterreq,?rainfall,?wateravail,?water_sarcacity,?cycle_year,?livestock,?num_families)";
                    cmd.Parameters.Add(new MySqlParameter("village_id", city.village_id));
                    cmd.Parameters.Add(new MySqlParameter("population", city.population));
                    cmd.Parameters.Add(new MySqlParameter("waterreq", city.waterreq));
                    cmd.Parameters.Add(new MySqlParameter("rainfall", city.rainfall));
                    cmd.Parameters.Add(new MySqlParameter("wateravail", city.wateravail));
                    cmd.Parameters.Add(new MySqlParameter("water_sarcacity", city.water_sarcacity));
                    cmd.Parameters.Add(new MySqlParameter("cycle_year", city.cycle_year));
                    cmd.Parameters.Add(new MySqlParameter("livestock", city.livestock));
                    cmd.Parameters.Add(new MySqlParameter("num_families", city.num_families));
                    i = cmd.ExecuteNonQuery();
                }
                catch (DbEntityValidationException ex)
                {
                    return(false);
                }
                finally
                {
                    if (null != con)
                    {
                        con.Close();
                    }
                }
            }
            if (i > 0)
            {
                return(true);
            }

            return(false);
        }
Exemplo n.º 25
0
        public static bool AddState(watershed_state state)
        {
            watershedEntities db = new watershedEntities();

            if (null == getStatesByName(state.sname))
            {
                try
                {
                    db.watershed_state.Add(state);
                    db.SaveChanges();
                }catch (DbEntityValidationException ex)
                {
                    return(false);
                }
                return(true);
            }
            return(false);
        }
Exemplo n.º 26
0
        public static Boolean RegisterDal(User user)
        {
            watershedEntities db = new watershedEntities();

            if (null == checkEmail(user))
            {
                try {
                    db.Users1.Add(user);
                    db.SaveChanges();
                }catch (DbEntityValidationException ex)
                {
                    Console.WriteLine(ex.Message);
                    return(false);
                }
                return(true);
            }
            return(false);
        }
Exemplo n.º 27
0
        public static bool AddVillage(watershed_village vil)
        {
            watershedEntities db = new watershedEntities();

            if (null == getVillage(vil))
            {
                try
                {
                    db.watershed_village.Add(vil);
                    db.SaveChanges();
                }catch (DbEntityValidationException ex)
                {
                    return(false);
                }
                return(true);
            }
            return(false);
        }
Exemplo n.º 28
0
        public static bool AddCrop(BOM.watershed_crop crop)
        {
            watershedEntities db = new watershedEntities();

            if (null == GetCrop(crop))
            {
                try
                {
                    db.watershed_crop.Add(crop);
                    db.SaveChanges();
                }
                catch (DbEntityValidationException ex)
                {
                    return(false);
                }
            }
            return(true);
        }
Exemplo n.º 29
0
        public static bool AddTaluka(watershed_taluka city)
        {
            watershedEntities db = new watershedEntities();

            if (null == getTaluka(city))
            {
                try
                {
                    db.watershed_taluka.Add(city);
                    db.SaveChanges();
                }
                catch (DbEntityValidationException ex)
                {
                    return(false);
                }
                return(true);
            }
            return(false);
        }
Exemplo n.º 30
0
        public static bool RemoveCrop(BOM.watershed_crop cr)
        {
            watershedEntities db = new watershedEntities();

            try {
                BOM.watershed_crop crop = db.watershed_crop.Remove(cr);
                db.SaveChanges();
                if (null == crop)
                {
                    return(false);
                }
                else
                {
                    return(true);
                }
            }catch (DbEntityValidationException ex)
            {
                return(false);
            }
        }