Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MMI-244 Fixed cbra report issues #2371

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions libs/net/entities/CBRAReportStaffSummary.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace TNO.Entities;
Expand All @@ -7,7 +6,6 @@ namespace TNO.Entities;
/// CBRA report staff summary
/// </summary>
[Keyless]
[NotMapped]
public class CBRAReportStaffSummary
{
public string staff { get; set; }
Expand Down
2 changes: 0 additions & 2 deletions libs/net/entities/CBRAReportTotalEntries.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace TNO.Entities;
Expand All @@ -7,7 +6,6 @@ namespace TNO.Entities;
/// CBRA report total entries
/// </summary>
[Keyless]
[NotMapped]
public class CBRAReportTotalEntries
{
public string dayofweek { get; set; }
Expand Down
2 changes: 0 additions & 2 deletions libs/net/entities/CBRAReportTotalExcerpts.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace TNO.Entities;
Expand All @@ -7,7 +6,6 @@ namespace TNO.Entities;
/// CBRA report total excerpts
/// </summary>
[Keyless]
[NotMapped]
public class CBRAReportTotalExcerpts
{
public string category { get; set; }
Expand Down
2 changes: 0 additions & 2 deletions libs/net/entities/CBRAReportTotalsByBroadcaster.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace TNO.Entities;
Expand All @@ -7,7 +6,6 @@ namespace TNO.Entities;
/// CBRA report totals by broadcaster
/// </summary>
[Keyless]
[NotMapped]
public class CBRAReportTotalsByBroadcaster
{
public string sourcetype { get; set; }
Expand Down
2 changes: 0 additions & 2 deletions libs/net/entities/CBRAReportTotalsByProgram.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace TNO.Entities;
Expand All @@ -7,7 +6,6 @@ namespace TNO.Entities;
/// CBRA report totals by program
/// </summary>
[Keyless]
[NotMapped]
public class CBRAReportTotalsByProgram
{
public string mediatype { get; set; }
Expand Down
Loading