Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.ServiceModel;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace RDH.Data.BLL
- {
- public interface ISnapshotBLL<T>
- {
- void UpdateCurrent(T v);
- void DeleteCurrent(T v);
- }
- }
|