Beauty_Salon/BeautySalon/BeautySalonDBModels/AbstractWorkWithStorage.cs

14 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeautySalonDBModels
{
public abstract class AbstractWorkWithStorage
{
public abstract void AddClient(Clien);
}
}