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