-
Notifications
You must be signed in to change notification settings - Fork 1
/
customerReport.cs
47 lines (37 loc) · 1.32 KB
/
customerReport.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
using MongoDB.Driver;
using MySqlConnector;
using System.Text.Json;
using System.IO;
namespace labfiles
{
public class customerOrdersReport
{
public async Task<MySqlConnection> getConnection(string host, string port, string database, string user, string password)
{
await Task.CompletedTask;
throw new NotImplementedException();
}
public IMongoCollection<CustomerOrder> getCollection(string host, string port, string database, string collection)
{
throw new NotImplementedException();
}
private async Task<CustomerContact> getCustomerContact(MySqlConnection connection, int customerNumber)
{
await Task.CompletedTask;
throw new NotImplementedException();
}
private List<Order> getCustomerOrders(IMongoCollection<CustomerOrder> collection, int customerNumber)
{
throw new NotImplementedException();
}
public async Task<CustomerReport> getCustomerReport(MySqlConnection connection, IMongoCollection<CustomerOrder> collection, int customerNumber)
{
await Task.CompletedTask;
throw new NotImplementedException();
}
//Class end
}
}