コード例 #1
0
        public CustomerDocumentController(IChinookGenericApplicationDTO <CustomerDocumentDTO, CustomerDocument> application)
        {
            Application = application;

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