Пример #1
0
 IList <Model.BaseInfo.Groups> IDao <Model.BaseInfo.Groups> .FindAll(Model.BaseInfo.Groups condition)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 int IDao <Model.BaseInfo.Groups> .GetCount(Model.BaseInfo.Groups codition)
 {
     throw new NotImplementedException();
 }
Пример #3
0
 Common.ResultMessage IDao <Model.BaseInfo.Groups> .Update(Model.BaseInfo.Groups entity)
 {
     throw new NotImplementedException();
 }
Пример #4
0
 int IService <Model.BaseInfo.Groups> .GetCount(Model.BaseInfo.Groups codition)
 {
     return(_groupsDao.GetCount(codition));
 }
Пример #5
0
 IList <Model.BaseInfo.Groups> IService <Model.BaseInfo.Groups> .FindAll(Model.BaseInfo.Groups condition)
 {
     return(_groupsDao.FindAll(condition));
 }
Пример #6
0
 Common.ResultMessage IService <Model.BaseInfo.Groups> .Update(Model.BaseInfo.Groups entity)
 {
     return(_groupsDao.Update(entity));
 }
Пример #7
0
 Common.ResultMessage IService <Model.BaseInfo.Groups> .Insert(Model.BaseInfo.Groups entity)
 {
     return(_groupsDao.Insert(entity));
 }