solved
This commit is contained in:
commit
4105b80297
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
@ -38,14 +37,21 @@ namespace Posechaemost.Data.Repository
|
|||||||
return groupLocal;
|
return groupLocal;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool RemoveGroupById(int groupID)
|
public bool RemoveGroupById(int groupID){
|
||||||
{
|
|
||||||
GroupLocalEntity? groupLocal = GetAllGroups()
|
GroupLocalEntity? groupLocal = GetAllGroups()
|
||||||
.Where(x => x.Id == groupID).FirstOrDefault();
|
.Where(x => x.Id == groupID).FirstOrDefault();
|
||||||
if (groupLocal == null) return false;
|
if (groupLocal == null) return false;
|
||||||
|
|
||||||
return GetAllGroups().Remove(groupLocal);
|
return GetAllGroups().Remove(groupLocal);
|
||||||
}
|
}
|
||||||
|
// public GroupLocalEntity? AddGroup(String name, String id) //не работает
|
||||||
|
// {
|
||||||
|
// GroupLocalEntity? groupLocal = GetAllGroups()
|
||||||
|
// .Where(x => x.Id == groupID).FirstOrDefault();
|
||||||
|
// if (groupLocal == null) return false;
|
||||||
|
|
||||||
|
// return GetAllGroups().Remove(groupLocal);
|
||||||
|
// }
|
||||||
|
|
||||||
public bool UpdateGroupById(int groupID, String name)
|
public bool UpdateGroupById(int groupID, String name)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user