8 lines
183 B
C#
8 lines
183 B
C#
|
using SushiBarContracts.BindingModels;
|
|||
|
|
|||
|
namespace SushiBarContracts.BusinessLogicsContracts;
|
|||
|
|
|||
|
public interface IBackUpLogic
|
|||
|
{
|
|||
|
void CreateBackUp(BackUpSaveBindingModel model);
|
|||
|
}
|