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