2024-04-24 09:49:52 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BeautySalonDBModels
|
|
|
|
|
{
|
2024-05-02 11:58:38 +04:00
|
|
|
|
public abstract class AbstractWorkWithStorage
|
2024-04-24 09:49:52 +04:00
|
|
|
|
{
|
2024-05-02 11:58:38 +04:00
|
|
|
|
public abstract void AddClient(Clien);
|
2024-04-24 09:49:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|