mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
17 lines
319 B
C#
17 lines
319 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using SportsStore.Domain.Entities;
|
|
|
|
namespace SportsStore.Domain.Abstract
|
|
{
|
|
public interface IProductRepository
|
|
{
|
|
IEnumerable<Product> Products { get; }
|
|
|
|
void SaveProduct(Product product);
|
|
}
|
|
}
|