SUBD/PersonnelDepartment/PersonnelDepartmentContracts/BusinessLogicContracts/IBackUpLogic.cs

15 lines
320 B
C#
Raw Normal View History

2024-05-20 01:11:07 +04:00
using PersonnelDepartmentContracts.BindingModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PersonnelDepartmentContracts.BusinessLogicContracts
{
public interface IBackUpLogic
{
void CreateBackUp(BackUpBinidngModel model);
}
}