15 lines
327 B
C#
15 lines
327 B
C#
|
using ComputersShopContracts.BindingModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ComputersShopContracts.BusinessLogicContracts
|
|||
|
{
|
|||
|
public interface IBackUpLogic
|
|||
|
{
|
|||
|
void CreateBackUp(BackUpSaveBinidngModel model);
|
|||
|
}
|
|||
|
}
|