source: FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkerService.cs@ de18858

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

Add more services

  • Property mode set to 100644
File size: 401 bytes
Line 
1using FarmatikoData.Models;
2using System;
3using System.Collections.Generic;
4using System.Text;
5
6namespace FarmatikoServices.FarmatikoServiceInterfaces
7{
8 public interface IHealthcareWorkerService
9 {
10 IEnumerable<HealthcareWorkers> GetAll();
11 void Add(HealthcareWorkers healthcareWorker);
12 //Not needed
13 /*void Remove(HealthcareWorkers healthcareWorker);*/
14 }
15}
Note: See TracBrowser for help on using the repository browser.