Exemple #1
0
        public ServiceResult <string> Delete(int Id)
        {
            CommonUserTypeService service = new CommonUserTypeService(_container);

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

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

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

            return(service.Edit(obj));
        }