Esempio n. 1
0
        public static void Delete(int ID)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            objCaller.Delete(ID);
        }
Esempio n. 2
0
        public static IList<LookupDetails> GetAllCountries()
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.GetAllCountries();
        }
Esempio n. 3
0
        public static IList<Volunteer> GetAll()
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.GetAll();
        }
Esempio n. 4
0
        public static Volunteer GetByID(int ID)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.GetByID(ID);
        }
Esempio n. 5
0
        public static void Update(Volunteer obj)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            objCaller.Update(obj);
        }
Esempio n. 6
0
        public static int Add(Volunteer obj)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

            return objCaller.Add(obj);
        }