Esempio n. 1
0
        public ServiceResult <string> Delete(int Id)
        {
            CommonUserTypeService service = new CommonUserTypeService(_container);

            return(service.Delete(Id));
        }
Esempio n. 2
0
        public ServiceResult <CommonUserType> Retrieve(int Id)
        {
            CommonUserTypeService service = new CommonUserTypeService(_container);

            return(service.Retrieve(Id));
        }
Esempio n. 3
0
        public ServiceResult <IList <CommonUserType> > GetAll()
        {
            CommonUserTypeService service = new CommonUserTypeService(_container);

            return(service.GetAll());
        }
Esempio n. 4
0
        public ServiceResult <CommonUserType> Edit(CommonUserType obj)
        {
            CommonUserTypeService service = new CommonUserTypeService(_container);

            return(service.Edit(obj));
        }