source: FarmatikoData/FarmatikoRepo/AdminRepo.cs@ db484c9

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

Fix bugs

  • Property mode set to 100644
File size: 1.3 KB
Line 
1using FarmatikoData.FarmatikoRepoInterfaces;
2using FarmatikoData.Models;
3using Microsoft.EntityFrameworkCore;
4using System;
5using System.Collections.Generic;
6using System.Linq;
7using System.Text;
8using System.Threading.Tasks;
9
10namespace FarmatikoData.FarmatikoRepo
11{
12 public class AdminRepo : IAdminRepo
13 {
14 private readonly FarmatikoDataContext _context;
15 public AdminRepo(FarmatikoDataContext context)
16 {
17 _context = context;
18 }
19
20 public async Task<IEnumerable<RequestPharmacyHead>> GetClaimingRequests()
21 {
22 var reqs = await _context.PHRequests.OrderBy(x => x.Head.Name).ToListAsync();
23 return reqs;
24 }
25
26 //GET
27 public async Task<IEnumerable<PharmacyHead>> GetPharmacyHeads()
28 {
29 var PHeads = await _context.PharmacyHeads
30 .Include(x => x.Medicines)
31 .Include(x => x.Pharmacies)
32 .OrderBy(x => x.Name)
33 .ToListAsync();
34 return PHeads;
35 }
36 //POST
37 public async void RemoveClaimRequest(int Id)
38 {
39 var req = _context.PHRequests.Where(x => x.Id == Id).FirstOrDefault();
40 _context.PHRequests.Remove(req);
41 await _context.SaveChangesAsync();
42 }
43 }
44}
Note: See TracBrowser for help on using the repository browser.