Fixed warnings in code

This commit is contained in:
Joseph Milazzo 2021-01-01 14:18:29 -06:00
parent c429c50ba2
commit fa71a40990
8 changed files with 5 additions and 16 deletions

View file

@ -2,7 +2,6 @@
using System.Threading.Tasks;
using API.DTOs;
using API.Entities;
using Microsoft.AspNetCore.Mvc;
namespace API.Interfaces
{
@ -22,6 +21,5 @@ namespace API.Interfaces
bool SaveAll();
Library GetLibraryForName(string libraryName);
Task<IEnumerable<LibraryDto>> GetLibrariesForUsernameAysnc(string userName);
//Task<IEnumerable<Series>> GetSeriesForIdAsync(int libraryId);
}
}