Exemplo n.º 1
0
 public UsersController(
     BeautifulContext context,
     IOptions <PagedCollectionParameters> defaultPagingOptions,
     TypeAdapterConfig typeAdapterConfig)
 {
     _context = context;
     _defaultPagingOptions = defaultPagingOptions.Value;
     _typeAdapterConfig    = typeAdapterConfig;
 }
 public GetAllPostsQuery(
     BeautifulContext context,
     PagedCollectionParameters defaultPagingParameters,
     TypeAdapterConfig typeAdapterConfig,
     string endpoint)
 {
     _context = context;
     _defaultPagingParameters = defaultPagingParameters;
     _typeAdapterConfig       = typeAdapterConfig;
     _endpoint = endpoint;
 }
Exemplo n.º 3
0
 public CreateUserQuery(BeautifulContext context)
 {
     _context = context;
 }
 public GetPostQuery(BeautifulContext context, TypeAdapterConfig typeAdapterConfig)
 {
     _context           = context;
     _typeAdapterConfig = typeAdapterConfig;
 }
 public GetAllUsersQuery(BeautifulContext context, PagedCollectionParameters defaultPagingParameters, string endpoint)
 {
     _context = context;
     _defaultPagingParameters = defaultPagingParameters;
     _endpoint = endpoint;
 }
Exemplo n.º 6
0
 public GetPostQuery(BeautifulContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public UsersController(BeautifulContext context, IOptions <PagedCollectionParameters> defaultPagingOptions)
 {
     _context = context;
     _defaultPagingOptions = defaultPagingOptions.Value;
 }
 public GetUserQuery(BeautifulContext context)
 {
     _context = context;
 }
 public CreatePostQuery(BeautifulContext context)
 {
     _context = context;
 }
 public CreateUserQuery(BeautifulContext context, TypeAdapterConfig typeAdapterConfig)
 {
     _context           = context;
     _typeAdapterConfig = typeAdapterConfig;
 }