Last change
on this file since db484c9 was db484c9, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Fix bugs
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | using FarmatikoData.FarmatikoRepoInterfaces;
|
---|
2 | using FarmatikoData.Models;
|
---|
3 | using Microsoft.EntityFrameworkCore;
|
---|
4 | using System;
|
---|
5 | using System.Collections.Generic;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Threading.Tasks;
|
---|
9 |
|
---|
10 | namespace 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.