27 lines
579 B
C#
27 lines
579 B
C#
using Subd_4.BindingModels;
|
|
using Subd_4.SearchModels;
|
|
using Subd_4.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Subd_4.StoragesContracts
|
|
{
|
|
public interface ITeamStorage
|
|
{
|
|
List<TeamViewModel> GetFullList();
|
|
|
|
List<TeamViewModel> GetFilteredList(TeamSearchModel model);
|
|
|
|
TeamViewModel? GetElement(TeamSearchModel model);
|
|
|
|
TeamViewModel? Insert(TeamBindingModel model);
|
|
|
|
TeamViewModel? Update(TeamBindingModel model);
|
|
|
|
TeamViewModel? Delete(TeamBindingModel model);
|
|
}
|
|
}
|