Beispiel #1
0
        public ExportQuery(IProfileQuery profileQuery, IPhotoQuery photoQuery)
        {
            Ensure.Any.IsNotNull(profileQuery, nameof(profileQuery));
            Ensure.Any.IsNotNull(photoQuery, nameof(photoQuery));

            _profileQuery = profileQuery;
            _photoQuery   = photoQuery;
        }
Beispiel #2
0
        public PhotoController(IPhotoQuery query)
        {
            Ensure.Any.IsNotNull(query, nameof(query));

            _query = query;
        }