11 lines
193 B
C#
11 lines
193 B
C#
|
using FlowerShopContracts.BindingModels;
|
|||
|
|
|||
|
namespace FlowerShopContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IBackUpLogic
|
|||
|
{
|
|||
|
void CreateBackUp(BackUpSaveBinidngModel model);
|
|||
|
}
|
|||
|
|
|||
|
}
|