10 lines
206 B
C#
10 lines
206 B
C#
using FlowerShopContracts.BindingModels;
|
|
|
|
namespace FlowerShopContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IBackUpLogic
|
|
{
|
|
void CreateBackUp(BackUpSaveBindingModel model);
|
|
}
|
|
}
|