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