示例#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));
 }