Exemplo n.º 1
0
 public bool usergroupUpdate(usergroup usergroup)
 {
     usergroupImpl ousergroupImpl = new usergroupImpl();
     return ousergroupImpl.usergroupUpdate( usergroup);
 }
Exemplo n.º 2
0
 public usergroup usergroupGetById(int UserGroupId)
 {
     usergroupImpl ousergroupImpl = new usergroupImpl();
     return ousergroupImpl.usergroupGetById(UserGroupId);
 }
Exemplo n.º 3
0
 public bool usergroupDelete(int UserGroupId)
 {
     usergroupImpl ousergroupImpl = new usergroupImpl();
     return ousergroupImpl.usergroupDelete( UserGroupId);
 }
Exemplo n.º 4
0
 public List<usergroup> usergroupGetAll()
 {
     usergroupImpl ousergroupImpl = new usergroupImpl();
     return ousergroupImpl.usergroupGetAll();
 }
Exemplo n.º 5
0
 public int usergroupAdd(usergroup usergroup)
 {
     usergroupImpl ousergroupImpl = new usergroupImpl();
     return ousergroupImpl.usergroupAdd( usergroup);
 }