10 lines
187 B
C#
10 lines
187 B
C#
using GiftShopContracts.BindingModels;
|
|
|
|
namespace GiftShopContracts.BusinessLogicsContracts
|
|
{
|
|
public interface IBackUpLogic
|
|
{
|
|
void CreateBackUp(BackUpSaveBinidngModel model);
|
|
}
|
|
}
|