Example #1
0
        public bool Delete(int Id)
        {
            ContactMasterRepository contact = new ContactMasterRepository();

            return(contact.Delete(Id));
        }
Example #2
0
        public ContactMaster Get(int Id)
        {
            ContactMasterRepository contact = new ContactMasterRepository();

            return(contact.Get(Id));
        }
Example #3
0
        public bool Put(ContactMaster contactMaster)
        {
            ContactMasterRepository contact = new ContactMasterRepository();

            return(contact.Put(contactMaster));
        }
Example #4
0
        public List <ContactMaster> Get()
        {
            ContactMasterRepository contact = new ContactMasterRepository();

            return(contact.GetAll());
        }