public CustomerDocumentController(IChinookGenericApplicationDTO <CustomerDocumentDTO, CustomerDocument> application)
        {
            Application = application;

            // !!!
            IsSecurityOperations.IsRead   = false;
            IsSecurityOperations.IsUpdate = false;
        }
 public PlaylistTrackController(IChinookGenericApplicationDTO <PlaylistTrackDTO, PlaylistTrack> application)
     : base("PlaylistTrack")
 {
     Application = application;
 }
Exemplo n.º 3
0
 public TrackController(IChinookGenericApplicationDTO <TrackDTO, Track> application)
 {
     Application = application;
 }
 public InvoiceController(IChinookGenericApplicationDTO <InvoiceDTO, Invoice> application)
 {
     Application = application;
 }
 public EmployeeController(IChinookGenericApplicationDTO <EmployeeDTO, Employee> application)
     : base("Employee")
 {
     Application = application;
 }
 public CustomerDocumentController(IChinookGenericApplicationDTO <CustomerDocumentDTO, CustomerDocument> application)
 {
     Application = application;
 }
Exemplo n.º 7
0
 public ArtistController(IChinookGenericApplicationDTO <ArtistDTO, Artist> application)
 {
     Application = application;
 }
 public MediaTypeController(IChinookGenericApplicationDTO <MediaTypeDTO, MediaType> application)
 {
     Application = application;
 }
Exemplo n.º 9
0
 public CustomerController(IChinookGenericApplicationDTO <CustomerDTO, Customer> application)
     : base("Customer")
 {
     Application = application;
 }
Exemplo n.º 10
0
 public AlbumController(IChinookGenericApplicationDTO <AlbumDTO, Album> application)
 {
     Application = application;
 }
Exemplo n.º 11
0
 public PlaylistController(IChinookGenericApplicationDTO <PlaylistDTO, Playlist> application)
 {
     Application = application;
 }
Exemplo n.º 12
0
 public GenreController(IChinookGenericApplicationDTO <GenreDTO, Genre> application)
     : base("Genre")
 {
     Application = application;
 }
 public InvoiceLineController(IChinookGenericApplicationDTO <InvoiceLineDTO, InvoiceLine> application)
     : base("InvoiceLine")
 {
     Application = application;
 }