public ServiceResult<string> Delete(int Id)
 	{
 		CommonUserTypeService service = new CommonUserTypeService(_container);
 		return service.Delete(Id);
 	}
 	public ServiceResult<CommonUserType> Retrieve(int Id)
 	{
 		CommonUserTypeService service = new CommonUserTypeService(_container);
 		return service.Retrieve(Id);
 	}
 	public ServiceResult<IList<CommonUserType>> GetAll()
 	{
 		CommonUserTypeService service = new CommonUserTypeService(_container);
 		return service.GetAll();
 	}
 	public ServiceResult<CommonUserType> Edit(CommonUserType obj)
 	{
 		CommonUserTypeService service = new CommonUserTypeService(_container);
 		return service.Edit(obj);
 	}