9 lines
211 B
C#
9 lines
211 B
C#
|
using ConfectioneryContracts.BindingModels;
|
|||
|
namespace ConfectioneryContracts.BusinessLogicsContracts
|
|||
|
{
|
|||
|
public interface IBackUpLogic
|
|||
|
{
|
|||
|
void CreateBackUp(BackUpSaveBinidngModel model);
|
|||
|
}
|
|||
|
}
|