Ignore:
Timestamp:
07/29/20 20:02:58 (4 years ago)
Author:
DimitarSlezenkovski <dslezenkovski@…>
Branches:
master
Children:
a55ef91
Parents:
de18858
Message:

Add services

File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoData/FarmatikoRepoInterfaces/IPharmacyHeadRepository.cs

    rde18858 r4e72684  
    22using System;
    33using System.Collections.Generic;
     4using System.Linq;
    45using System.Text;
    56
     
    1011        void Add(PharmacyHead pharmacyHead);
    1112        void Remove(PharmacyHead pharmacyHead, string Name);
    12         ICollection<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
     13        IQueryable<PharmacyHead> GetAllPharmacies(string NameOfPharmacyHead);
    1314        //Not actually needed
    14         IEnumerable<PharmacyHead> GetPharmacyByName(string Name);
     15        IQueryable<PharmacyHead> GetPharmacyByName(string Name);
     16        IQueryable<MedicineList> GetPharmacyMedicines(string NameOfPharmacy);
    1517    }
    1618}
Note: See TracChangeset for help on using the changeset viewer.