Beispiel #1
0
 public UserLogic(
     IDAO <int, User> userDAO,
     IUsersAwardsRelationsCache relationCache,
     IDAO <int, Image> imgDAO) : base(userDAO, relationCache)
 {
     this.imgDAO = imgDAO;
     imgCache    = imgDAO.GetEntities().ToDictionary(e => e.Id);
 }
 public AwardLogic(
     IDAO <int, Award> awardDAO,
     IUsersAwardsRelationsCache relationCache) : base(awardDAO, relationCache)
 {
 }