2024-10-14 11:51:48 +00:00
|
|
|
|
using Demo.Data.LocalData;
|
2024-10-18 13:23:16 +00:00
|
|
|
|
using Demo.Domain.Models;
|
2024-10-14 11:51:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Demo.Data.Repository
|
|
|
|
|
{
|
|
|
|
|
public class GroupRepositoryImpl
|
|
|
|
|
{
|
|
|
|
|
public List<GroupLocalEntity> GetAllGroups() => LocalStaticData.groups;
|
|
|
|
|
}
|
|
|
|
|
}
|