Skip to content

Commit

Permalink
chore: libs
Browse files Browse the repository at this point in the history
  • Loading branch information
eugbyte committed Oct 12, 2024
1 parent 6a2c61b commit c59d9b7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/StoreOnWheels.Server/Libs/Services/VendorService.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Microsoft.EntityFrameworkCore;
using StoreOnWheels.Server.Configs;
using StoreOnWheels.Server.Domains.Interfaces;
using StoreOnWheels.Server.Domains.Models;
using StoreOnWheels.Server.Libs.Configs;
using StoreOnWheels.Server.Libs.Domains.Interfaces;
using StoreOnWheels.Server.Libs.Domains.Models;

namespace StoreOnWheels.Server.Services;
namespace StoreOnWheels.Server.Libs.Services;

public class VendorService(AppDbContext db) : IVendorService {
public async Task<Vendor?> Get(string vendorId) => await db.Vendors.FindAsync(vendorId);
Expand Down
10 changes: 5 additions & 5 deletions src/StoreOnWheels.Server/Program.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Caching;
using Microsoft.EntityFrameworkCore;
using StoreOnWheels.Server.Configs;
using StoreOnWheels.Server.Controllers;
using StoreOnWheels.Server.Domains.Interfaces;
using StoreOnWheels.Server.Domains.Models;
using StoreOnWheels.Server.Services;
using StoreOnWheels.Server.Services.BackgroundServices;
using StoreOnWheels.Server.Libs.Configs;
using StoreOnWheels.Server.Libs.Domains.Interfaces;
using StoreOnWheels.Server.Libs.Domains.Models;
using StoreOnWheels.Server.Libs.Services;
using StoreOnWheels.Server.Libs.Services.BackgroundServices;

var builder = WebApplication.CreateBuilder(args);
builder.Configuration.AddEnvironmentVariables();
Expand Down

0 comments on commit c59d9b7

Please sign in to comment.