public LinksService(LinkShortenDBEntities context) : base(context)
 {
     //will become deprecated soon
     AutoMapper.Mapper.CreateMap <Link, LinkModel>();
 }
Example #2
0
 public BaseService(LinkShortenDBEntities context)
 {
     _context = context;
 }