Exemple #1
0
        public static void Delete(int ID)
        {
            VolunteerDataMapper objCaller = new VolunteerDataMapper();

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

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

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

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

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

            return objCaller.Add(obj);
        }