presense/Demo/Data/Repository/GroupRepositoryImpl.cs

16 lines
336 B
C#
Raw Normal View History

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;
}
}