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