2020-12-05 21:47:12 +01:00
|
|
|
|
using SessionCompanion.Database.Tables;
|
|
|
|
|
using SessionCompanion.Services.Base;
|
2021-01-20 18:55:11 +01:00
|
|
|
|
using SessionCompanion.ViewModels.ShopkeeperItemsViewModels;
|
2020-12-05 21:47:12 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2021-01-20 18:55:11 +01:00
|
|
|
|
using System.Linq;
|
2020-12-05 21:47:12 +01:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SessionCompanion.Services.Interfaces
|
|
|
|
|
{
|
2021-01-20 18:55:11 +01:00
|
|
|
|
public interface IShopkeeperItemService : IServiceBase<ShopkeeperItemViewModel, ShopkeeperItem>
|
2020-12-05 21:47:12 +01:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|