Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • FarmatikoServices/FarmatikoServiceInterfaces/IPharmacyService.cs

    rc406ae5 ra55ef91  
    22using System.Collections.Generic;
    33using System.Linq;
    4 using System.Threading.Tasks;
    54
    65namespace FarmatikoServices.FarmatikoServiceInterfaces
     
    98    {
    109        void Add(Pharmacy pharmacy);
    11         Task<ICollection<Pharmacy>> GetPharmacies();
    12         Task<IQueryable<Pharmacy>> GetAll();
     10        ICollection<Pharmacy> GetPharmacies();
     11        IQueryable<Pharmacy> GetAll();
    1312        void Remove(Pharmacy pharmacy);
    14         void UpdatePharmacy(Pharmacy pharmacy);
     13        void UpdatePharmacy(Pharmacy pharmacy, string Name);
    1514    }
    1615}
Note: See TracChangeset for help on using the changeset viewer.