presense/Demo/Data/Repository/GroupRepositoryImpl.cs
2024-10-18 16:23:16 +03:00

16 lines
336 B
C#

using Demo.Data.LocalData;
using Demo.Domain.Models;
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;
}
}