Add "Image" context to add images for the users

This commit is contained in:
Sébastien André
2020-05-26 17:26:04 +02:00
parent 8367927046
commit f21bda7d7b
18 changed files with 250 additions and 10 deletions

View File

@@ -22,5 +22,7 @@ namespace skydiveLogs_api.Data.Interface
ILiteCollection<Jump> CollOfJump { get; }
ILiteCollection<User> CollOfUser { get; }
ILiteCollection<Image> CollOfImage { get; }
}
}

View File

@@ -0,0 +1,9 @@
using skydiveLogs_api.Model;
namespace skydiveLogs_api.Data.Interface
{
public interface IImageRepository : IRepository<Image>
{
}
}