17 lines
270 B
C#
17 lines
270 B
C#
|
|
|||
|
using System.Data;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
|
|||
|
namespace BeautySalonContracts.StorageContracts
|
|||
|
{
|
|||
|
public interface ICosmeticStorage
|
|||
|
{
|
|||
|
//CRUD
|
|||
|
//public Create(new CosmeticBinngModel);
|
|||
|
//public Read();
|
|||
|
//public Update();
|
|||
|
//public Deleted();
|
|||
|
|
|||
|
}
|
|||
|
}
|