source: FarmatikoServices/FarmatikoServiceInterfaces/IHealthcareWorkerService.cs@ e42f61a

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

Add more services

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