-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobalUsings.cs
More file actions
27 lines (26 loc) · 1.05 KB
/
Copy pathGlobalUsings.cs
File metadata and controls
27 lines (26 loc) · 1.05 KB
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
global using System;
global using System.Collections.Generic;
//global using MBDEVproAPI.BLL.Interfaces;
//global using MBDEVproAPI.BLL.Services;
global using MBDEVproAPI.Common.Models;
global using MBDEVproAPI.Common.ViewModels;
global using MBDEVproAPI.BLL.Interfaces;
global using MBDEVproAPI.BLL.Services;
global using MBDEVproAPI.DataModel;
global using MBDEVproAPI.DataModel.Entities;
global using MBDEVproAPI.Repository.Interfaces;
global using MBDEVproAPI.Repository.Repositories;
global using Microsoft.AspNetCore.Authorization;
global using Microsoft.AspNetCore.Builder;
global using Microsoft.AspNetCore.Hosting;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Mvc;
global using Microsoft.AspNetCore.Mvc.Filters;
global using Microsoft.EntityFrameworkCore;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Hosting;
//global using Microsoft.OpenApi.Models;
global using Serilog;
global using Serilog.Formatting.Json;
global using Microsoft.OpenApi;