source: FarmatikoData/FarmatikoRepoInterfaces/IMedicineListRepository.cs@ 37c8d1d

Last change on this file since 37c8d1d was 37c8d1d, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add FarmatikoRepository and FarmatikoServices

  • Property mode set to 100644
File size: 371 bytes
RevLine 
[37c8d1d]1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoData.FarmatikoRepo
7{
8 public interface IMedicineListRepository
9 {
10 void Add(MedicineList medicineList);
11 void Remove(MedicineList medicineList);
12 MedicineList GetAll();
13 MedicineList CheckMedicine(string Name);
14 }
15}
Note: See TracBrowser for help on using the repository browser.