This commit is contained in:
Paul Schneider 2021-08-15 19:09:01 +01:00
commit 504f431937
67 changed files with 239 additions and 96 deletions

View file

@ -8,10 +8,10 @@ using MailKit.Net.Smtp;
using MimeKit;
using System;
using isn.Interfaces;
using isn.Entities;
using isnd.Interfaces;
using isnd.Entities;
namespace isn.Services
namespace isnd.Services
{
public class EmailSender : IEmailSender, IMailer
{

View file

@ -1,8 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using isn.Controllers;
using isn.Data;
using isn.ViewModels;
using isnd.Controllers;
using isnd.Data;
using isnd.ViewModels;
using Microsoft.EntityFrameworkCore;
using NuGet.Versioning;
@ -34,6 +33,7 @@ namespace isnd.Services
return new PackageIndexViewModel
{
query = query,
totalHits = total,
data = pkgs
};

View file

@ -1,4 +1,4 @@
using isn.Data;
using isnd.Data;
namespace isnd.Services
{